summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/system_update_control.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/ns/system_update_control.h')
-rw-r--r--src/core/hle/service/ns/system_update_control.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/system_update_control.h b/src/core/hle/service/ns/system_update_control.h
new file mode 100644
index 000000000..a30a09000
--- /dev/null
+++ b/src/core/hle/service/ns/system_update_control.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::NS {
+
+class ISystemUpdateControl final : public ServiceFramework<ISystemUpdateControl> {
+public:
+ explicit ISystemUpdateControl(Core::System& system_);
+ ~ISystemUpdateControl() override;
+};
+
+} // namespace Service::NS